Document Solutions for PDF
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Imaging Namespace / GcBitmap Class / ToIndexed4bppBitmap Method / ToIndexed4bppBitmap(UInt32[],DitheringMethod,Boolean,Boolean) Method
The palette with opaque colors for the new image (colors are in 32-bit ARGB format). Elements with index 16 and above are ignored.
The method of two-dimensional error diffusion dithering.
Indicates if a transparent color should be added to the palette, if the image is not opaque and the number of opaque colors is less than 16.
If true, pixels are arranged within a byte such that pixels with lower column indices are stored in the lower-order bit tetrads of the byte.

In This Topic
    ToIndexed4bppBitmap(UInt32[],DitheringMethod,Boolean,Boolean) Method
    In This Topic
    Creates an opaque Indexed4bppBitmap from the current image using the specified palette.
    Syntax
    'Declaration
     
    Public Overloads Function ToIndexed4bppBitmap( _
       ByVal palette() As System.UInteger, _
       ByVal ditheringMethod As DitheringMethod, _
       Optional ByVal appendTransparentColor As System.Boolean, _
       Optional ByVal lowerBitsFirst As System.Boolean _
    ) As Indexed4bppBitmap
    public Indexed4bppBitmap ToIndexed4bppBitmap( 
       System.uint[] palette,
       DitheringMethod ditheringMethod,
       System.bool appendTransparentColor,
       System.bool lowerBitsFirst
    )

    Parameters

    palette
    The palette with opaque colors for the new image (colors are in 32-bit ARGB format). Elements with index 16 and above are ignored.
    ditheringMethod
    The method of two-dimensional error diffusion dithering.
    appendTransparentColor
    Indicates if a transparent color should be added to the palette, if the image is not opaque and the number of opaque colors is less than 16.
    lowerBitsFirst
    If true, pixels are arranged within a byte such that pixels with lower column indices are stored in the lower-order bit tetrads of the byte.

    Return Value

    A new instance of Indexed4bppBitmap.
    See Also